home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Programming Tools / XCMDs / SendSerial.p < prev    next >
Encoding:
Text File  |  1987-08-01  |  5.1 KB  |  239 lines  |  [TEXT/ttxt]

  1. {$R-}
  2. {$D+}
  3. (*
  4.     SendSerial --     a HyperCard user-defined command 
  5.                     send bytes out the serial port (at specified baud rate).
  6.                     By Ken D.
  7.     ©Apple Computer, Inc. 1987
  8.     All Rights Reserved.
  9.  
  10.                       
  11.     example 1:
  12.         SendSerial "Hello There",1200
  13.         
  14.         sends the string "Hello There" out the modem port at 1200 baud.
  15.         If no baud rate is specified it defaults to 9600.
  16.         
  17.     example 2:
  18.         SendSerial "AX4500^0D"
  19.         
  20.         sends the string AX4500<CR> out the modem port at 9600 baud.
  21.         The ^ indicates two hex didgits to follow. (Two ^^ means ^)
  22.  
  23.     To compile and link this file using Macintosh Programmer's Workshop,
  24.  
  25.     pascal -w SendSerial.p
  26.     link -m ENTRYPOINT -o HyperCommands -rt XCMD=222 -sn Main=SendSerial ∂
  27.       SendSerial.p.o "{MPW}"Libraries:interface.o
  28.  
  29.     then use ResEdit to copy the resulting XCMD from Test
  30.     and paste it into HyperCard, the Home stack, or your own stack.
  31. *)
  32.  
  33. {$S SendSerial }     { Segment name must be the same as the command name. }
  34.  
  35. UNIT DummyUnit;
  36.  
  37. INTERFACE
  38.  
  39.    USES MemTypes, QuickDraw, OsIntf, HyperXCmd;
  40.     
  41. PROCEDURE EntryPoint(paramPtr: XCmdPtr);
  42.     
  43. IMPLEMENTATION
  44.  
  45. TYPE Str19 = String[19];
  46.      Str31 = String[31];
  47.  
  48. const debug = false;
  49.  
  50. PROCEDURE SendSerial(paramPtr: XCmdPtr);                            FORWARD;
  51.  
  52.    PROCEDURE EntryPoint(paramPtr: XCmdPtr);
  53.    { entry point cannot have local procs, but forward routines can }
  54.    BEGIN
  55.      SendSerial(paramPtr);
  56.    END;
  57.  
  58.    PROCEDURE SendSerial(paramPtr: XCmdPtr);
  59.    VAR reverseFlag, offFlag, tillFlag: BOOLEAN;
  60.        message, tempStr: Str255;
  61.        refNum: INTEGER;
  62.        err: INTEGER;
  63.        baudRate: INTEGER;
  64.  
  65.      {$I XCmdGlue.inc }
  66.             
  67.      PROCEDURE Fail(errMsg: Str255); { set theResult and quit }
  68.      BEGIN
  69.        paramPtr^.returnValue := PasToZero(errMsg);
  70.        EXIT(SendSerial);
  71.      END;
  72.             
  73.      PROCEDURE OpenSerial;
  74.      VAR handShake: SerShk;
  75.           bRate: INTEGER;
  76.      BEGIN
  77.        { for now, use modem port so we don't mess with AppleTalk }
  78.        bRate := baudRate;
  79.        err := FSOpen('.AOUT',0,refNum);
  80.        IF err = 0 THEN 
  81.          BEGIN
  82.            WITH handShake DO
  83.              BEGIN
  84.                fXon := 1;
  85.                fCTS := 1;
  86.                xon  := CHR(17);
  87.                xoff := CHR(19);
  88.                errs := 0;
  89.                evts := 0;
  90.                fInx := 0;
  91.              END;
  92.            err := SerHShake(refNum,handShake);
  93.            IF err = 0 THEN 
  94.              err := Control(refNum,13,@bRate);
  95.          END;
  96.         if debug then 
  97.             BEGIN
  98.             MoveTo (150,30);
  99.             DrawString('Opened Serial');
  100.             end;
  101.      END;
  102.      
  103.      
  104.      PROCEDURE CloseSerial;
  105.      BEGIN
  106.        err := FSClose(refNum);
  107.         if debug then 
  108.             BEGIN
  109.             MoveTo (150,90);
  110.             DrawString('closed Serial');
  111.             end;
  112.      END;
  113.      
  114.      
  115.      PROCEDURE SendCommand(cmd: Str255);
  116.      VAR count: LongInt;
  117.      BEGIN
  118.         if debug then 
  119.             BEGIN
  120.             MoveTo (150,60);
  121.             DrawString('About to FSWrite');
  122.             end;
  123.        count := Length(cmd);
  124.        err := FSWrite(refNum, count, Pointer(Ord(@cmd)+1));
  125.         if debug then 
  126.             BEGIN
  127.             MoveTo (300,60);
  128.             DrawString('FSWrote');
  129.             end;
  130.      END;
  131.  
  132.      PROCEDURE GetMessage;    
  133.      VAR str: STR255;
  134.           charNum: INTEGER;
  135.          msgChar: CHAR;
  136.          commandPtr: Ptr;
  137.          
  138.          FUNCTION GetHex: CHAR;
  139.              VAR ch: CHAR;
  140.                 hex: INTEGER;
  141.          BEGIN
  142.              ch := CHR(commandPtr^);
  143.             IF ch = '^' THEN {two ^'s means really want a ^}
  144.                 GetHex := '^'
  145.              ELSE 
  146.                 BEGIN
  147.                 IF (ch >= '0') AND (ch <= '9') THEN
  148.                     hex := ORD(ch) - ORD('0')
  149.                 ELSE IF (ch >= 'a') AND (ch <= 'f') THEN 
  150.                     hex := 10 + ORD(ch) - ORD('a')
  151.                 ELSE IF (ch >= 'A') AND (ch <= 'F') THEN 
  152.                     hex := 10 + ORD(ch) - ORD('A')
  153.                 ELSE
  154.                     Fail('"^" Must be followed two hex digits (0-9,a-f,A-F)');
  155.                     
  156.                    commandPtr := Pointer(Ord(commandPtr)+1);
  157.  
  158.                 ch := CHR(commandPtr^);
  159.                 IF (ch >= '0') AND (ch <= '9') THEN
  160.                     hex := 16*hex + ORD(ch) - ORD('0')
  161.                 ELSE IF (ch >= 'a') AND (ch <= 'f') THEN 
  162.                     hex := 16*hex + 10 + ORD(ch) - ORD('a')
  163.                 ELSE IF (ch >= 'A') AND (ch <= 'F') THEN 
  164.                     hex := 16*hex + 10 + ORD(ch) - ORD('A')
  165.                 ELSE
  166.                     Fail('"^" Must be followed two hex digits (0-9,a-f,A-F)');
  167.                 
  168.                 GetHex := CHR(hex);
  169.                 END;
  170.                commandPtr := Pointer(Ord(commandPtr)+1);
  171.          END;
  172.           
  173.      BEGIN
  174.         WITH paramPtr^ DO
  175.               BEGIN
  176.            { get baud rate if it's there }
  177.             IF paramCount = 2 THEN
  178.               BEGIN
  179.                 ZeroToPas(params[2]^,str);
  180.                 baudRate := StrToNum(str);
  181.                  if debug then
  182.                     begin
  183.                     moveTo(50,120);
  184.                     drawstring(str);
  185.                     end;
  186.                 IF baudRate = 0 THEN
  187.                     Fail('SendSerial cancelled: Zero baud rate specified');
  188.               END;
  189.              
  190.            { Convert the first parameter into a STR255, processing Hex codes }
  191.            charNum := 0;
  192.            commandPtr := params[1]^;
  193.            WHILE (commandPtr^ <> 0) AND (charNum < 255) DO
  194.              BEGIN
  195.                msgChar := CHR(commandPtr^);
  196.                commandPtr := Pointer(Ord(commandPtr)+1);
  197.                charNum := charNum + 1;
  198.                { If we see a ^ then look for two hex didgits }
  199.                IF msgChar = '^' THEN
  200.                     msgChar := GetHex;
  201.                message[charNum] := msgChar;
  202.              END;
  203.              
  204.            message[0] := CHR(charNum);
  205.               END; { WITH }
  206.            
  207.      if debug then
  208.          begin
  209.         moveTo(50,140);
  210.         drawstring(message);
  211.         end;
  212.      END;
  213.      
  214.        
  215.  
  216.    BEGIN {SendSerial}
  217.         baudRate := 9600; { this may get reset in GetMessage }
  218.      GetMessage;
  219.      
  220.      OpenSerial;
  221.      IF err <> 0 THEN Fail('could not open serial port');
  222.      
  223.      SendCommand(message);
  224.           
  225.      CloseSerial;
  226.      
  227.      if debug then
  228.          begin
  229.         moveTo(50,180);
  230.         drawstring('Finis');
  231.         end;
  232.  
  233.    END;   
  234.  
  235. END.
  236.  
  237.  
  238.  
  239.